home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / kaffe / exception.h < prev    next >
C/C++ Source or Header  |  1996-02-11  |  482b  |  24 lines

  1. /*
  2.  * exception.h
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #ifndef __exception_h
  14. #define __exception_h
  15.  
  16. typedef struct _exception {
  17.     u4    start_pc;
  18.     u4    end_pc;
  19.     u4    handler_pc;
  20.     char*    catch_type;
  21. } exception;
  22.  
  23. #endif
  24.